home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000154_john.santos@post.harvard.edu_Sat May 19 12:51:27 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  55 lines

  1. Article: 12450 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!nycmny1-snh1.gtei.net!cpk-news-hub1.bbnplanet.com!news.gtei.net!newsfeed.skycache.com!Cidera!cyclone1.ba-dsg.net!spamfinder.gnilink.com!typhoon2.ba-dsg.net.POSTED!not-for-mail
  3. From: John Santos <john.santos@post.harvard.edu>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: ? Script for retrieving from POP3 server
  6. Message-ID: <MPG.157017a3e99d14de989690@news.bellatlantic.net>
  7. References: <3B006553.C1470406@value.net> <3b006d83$0$322$8eec23a@newsreader.tycho.net> <3B0086D3.1E8D6F90@value.net> <MPG.156e9a569debacb498968f@news.bellatlantic.net> <9e351k$maj$1@newsmaster.cc.columbia.edu>
  8. X-Newsreader: MicroPlanet Gravity v2.30
  9. Lines: 38
  10. Date: Sat, 19 May 2001 10:39:35 GMT
  11. NNTP-Posting-Host: 151.203.109.54
  12. X-Complaints-To: business-support@verizon.com
  13. X-Trace: typhoon2.ba-dsg.net 990268775 151.203.109.54 (Sat, 19 May 2001 06:39:35 EDT)
  14. NNTP-Posting-Date: Sat, 19 May 2001 06:39:35 EDT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12450
  16.  
  17. In article <9e351k$maj$1@newsmaster.cc.columbia.edu>, 
  18. jaltman@watsun.cc.columbia.edu says...
  19. > In article <MPG.156e9a569debacb498968f@news.bellatlantic.net>,
  20. > John Santos  <john.santos@post.harvard.edu> wrote:
  21. > : At my company, we used to use Kermit to connect to the SMTP server and
  22. > : send mail, so talking to the POP3 server should be possible.  I don't
  23. > : have any special hints to offer except that it would probably be
  24. > : necessary to turn off telnet option negotiations ("set telnet wait off"
  25. > : in Kermit, IIRC), and to careful check for errors after each and every
  26. > : command in your Kermit script and have it do something reasonable.
  27. > When using C-Kermit to connect to a service that is not using telnet
  28. > protocol, the connection should be made using a raw socket
  29. >   SET HOST host port /RAW-SOCKET
  30. > /RAW-SOCKET is an example of a protocol.  Another protocol that can
  31. > be used with NVT based services is /NO-TELNET-INIT which means use
  32. > Telnet protocol but do not initiate any telnet negotiations.  
  33. > SET TELNET WAIT OFF is something that should be used only when
  34. > communicating with a broken Telnet Server when you do not want to
  35. > spend the time to determine which of the telnet options it implements
  36. > improperly.  When SET TELNET WAIT OFF is used, telnet negotiations are
  37. > initiated which may be treated as garbage by the service.
  38. >  Jeffrey Altman * Sr.Software Designer      C-Kermit 7.1 Alpha available
  39. >  The Kermit Project @ Columbia University   includes Secure Telnet and FTP
  40. >  http://www.kermit-project.org/             using Kerberos, SRP, and 
  41. >  kermit-support@kermit-project.org          OpenSSL.  SSH soon to follow.
  42.  
  43. Thanks for the hint.  I'll check to see if we are still doing this, and
  44. use this method if appropriate.  (I take it that /NO-TELNET-INIT doesn't
  45. initiate telnet negotiations, but does respond to them if the remote 
  46. side initiates them?) 
  47.  
  48. -- 
  49. John Santos
  50.